home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Psygnosis Promotional CD-ROM for E3 1998
/
Psygnosis Promotional CD-ROM for E3 1998.iso
/
introseq.dir
/
00024_Script_select Platform
< prev
next >
Wrap
Text File
|
1998-05-08
|
618b
|
20 lines
global GameType, gPlatformList, gPlatformObj, gAction
-------------------------------------------
on mouseDown me
if (GameType <> 0) OR (gAction <> 5) then exit
set theSprite = the spriteNum of me
set GameType = the name of member (the member of sprite theSprite)
-------
repeat with n = 1 to count(gPlatformList)
set theObj = getAt(gPlatformList, n)
set myMember = the myImage of theObj
if myMember = GameType then
set gPlatformObj = theObj
deleteAt gPlatformList, n
exit repeat
end if
end repeat
-------
prepareNextAction
-------
end mouseDown